home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscProgressPalette / MiscProgressView.subproj / MiscProgressPie.h < prev    next >
Text File  |  1995-04-12  |  841b  |  31 lines

  1. //
  2. //    MiscProgressPie.h -- a simple view class for displaying a pie
  3. //        Written and Copyright (c) 1993 by James Heiser.  (jheiser@adobe.com)
  4. //                Version 1.0.  All rights reserved.
  5. //
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This object is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14. #import "MiscProgressView.h"
  15.  
  16. @interface MiscProgressPie:MiscProgressView
  17. {
  18.     BOOL    isHidden;
  19. }
  20.  
  21. - initFrame:(const NXRect *)frameRect;
  22. - renderBar;
  23. - renderBorder;
  24. - setHidden:(BOOL)aBool;
  25. - (BOOL)isHidden;
  26. - read:(NXTypedStream*)stream;
  27. - write:(NXTypedStream*)stream;
  28. - (const char *)getInspectorClassName;
  29.  
  30. @end
  31.